home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1997 February / Computer Life February 1997.iso / S / VN / PRODUCT / VNOTES95.EXE / 0 / RCDATA / TFRMALARM / TFRMALARM.txt
Text File  |  1996-07-07  |  5KB  |  235 lines

  1. object frmAlarm: TfrmAlarm
  2.   Left = 155
  3.   Top = 103
  4.   HorzScrollBar.Visible = False
  5.   VertScrollBar.Visible = False
  6.   ActiveControl = calDate
  7.   BorderIcons = []
  8.   BorderStyle = bsDialog
  9.   ClientHeight = 300
  10.   ClientWidth = 282
  11.   Font.Color = clWindowText
  12.   Font.Height = 12
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   FormStyle = fsStayOnTop
  16.   KeyPreview = True
  17.   Position = poScreenCenter
  18.   OnClose = FormClose
  19.   OnCreate = FormCreate
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object panMain: TPanel
  23.     Left = 0
  24.     Top = 0
  25.     Width = 282
  26.     Height = 269
  27.     Align = alTop
  28.     Alignment = taLeftJustify
  29.     BevelInner = bvRaised
  30.     BevelOuter = bvNone
  31.     BorderWidth = 4
  32.     TabOrder = 0
  33.     object lblDate: TLabel
  34.       Left = 12
  35.       Top = 8
  36.       Width = 260
  37.       Height = 20
  38.       Alignment = taCenter
  39.       AutoSize = False
  40.     end
  41.     object lblTime: TLabel
  42.       Left = 114
  43.       Top = 154
  44.       Width = 23
  45.       Height = 13
  46.       Alignment = taRightJustify
  47.       Caption = '&Time'
  48.       FocusControl = txtHour
  49.     end
  50.     object calDate: TCalendar
  51.       Left = 13
  52.       Top = 28
  53.       Width = 255
  54.       Height = 95
  55.       Hint = 'Click to select a date'
  56.       StartOfWeek = 0
  57.       TabOrder = 0
  58.       UseCurrentDate = False
  59.       OnChange = calDateChange
  60.     end
  61.     object btnYearBack: TButton
  62.       Left = 13
  63.       Top = 122
  64.       Width = 48
  65.       Height = 18
  66.       Hint = '1 Year Back'
  67.       Caption = '<<'
  68.       TabOrder = 1
  69.       OnClick = btnYearBackClick
  70.     end
  71.     object btnMonthBack: TButton
  72.       Left = 61
  73.       Top = 122
  74.       Width = 48
  75.       Height = 18
  76.       Hint = '1 Month Back'
  77.       Caption = '<'
  78.       TabOrder = 2
  79.       OnClick = btnYearBackClick
  80.     end
  81.     object btnMonthFore: TButton
  82.       Left = 172
  83.       Top = 122
  84.       Width = 48
  85.       Height = 18
  86.       Hint = '1 Month Forward'
  87.       Caption = '>'
  88.       TabOrder = 4
  89.       OnClick = btnYearBackClick
  90.     end
  91.     object btnYearFore: TButton
  92.       Left = 220
  93.       Top = 122
  94.       Width = 48
  95.       Height = 18
  96.       Hint = '1 Year Forward'
  97.       Caption = '>>'
  98.       TabOrder = 5
  99.       OnClick = btnYearBackClick
  100.     end
  101.     object btnToday: TButton
  102.       Left = 109
  103.       Top = 122
  104.       Width = 63
  105.       Height = 18
  106.       Hint = 'Select Today'#39's Date'
  107.       Caption = 'Today'
  108.       TabOrder = 3
  109.       OnClick = btnYearBackClick
  110.     end
  111.     object cboAMPM: TComboBox
  112.       Left = 230
  113.       Top = 151
  114.       Width = 39
  115.       Height = 21
  116.       Hint = 'AM / PM'
  117.       Style = csDropDownList
  118.       ItemHeight = 13
  119.       Items.Strings = (
  120.         'AM'
  121.         'PM')
  122.       MaxLength = 2
  123.       TabOrder = 10
  124.     end
  125.     object udwHour: TUpDown
  126.       Left = 169
  127.       Top = 151
  128.       Width = 12
  129.       Height = 21
  130.       Hint = 'Hours'
  131.       Associate = txtHour
  132.       Min = 0
  133.       Max = 11
  134.       Position = 0
  135.       TabOrder = 7
  136.       Wrap = True
  137.     end
  138.     object txtHour: TEdit
  139.       Left = 144
  140.       Top = 151
  141.       Width = 25
  142.       Height = 21
  143.       Hint = 'Hours'
  144.       TabOrder = 6
  145.       Text = '0'
  146.     end
  147.     object udwMinute: TUpDown
  148.       Left = 212
  149.       Top = 151
  150.       Width = 12
  151.       Height = 21
  152.       Hint = 'Minutes'
  153.       Associate = txtMinute
  154.       Min = 0
  155.       Max = 59
  156.       Position = 0
  157.       TabOrder = 9
  158.       Wrap = True
  159.     end
  160.     object txtMinute: TEdit
  161.       Left = 187
  162.       Top = 151
  163.       Width = 25
  164.       Height = 21
  165.       Hint = 'Minutes'
  166.       TabOrder = 8
  167.       Text = '0'
  168.       OnChange = txtMinuteChange
  169.     end
  170.     object lstWeekdays: TListBox
  171.       Left = 13
  172.       Top = 197
  173.       Width = 255
  174.       Height = 59
  175.       Hint = 'Weekdays to Repeat Alarm'
  176.       Columns = 3
  177.       Enabled = False
  178.       ExtendedSelect = False
  179.       ItemHeight = 13
  180.       Items.Strings = (
  181.         'Sunday'
  182.         'Monday'
  183.         'Tuesday'
  184.         'Wednesday'
  185.         'Thursday'
  186.         'Friday'
  187.         'Saturday')
  188.       MultiSelect = True
  189.       TabOrder = 12
  190.     end
  191.     object chkRepeat: TCheckBox
  192.       Left = 13
  193.       Top = 175
  194.       Width = 255
  195.       Height = 19
  196.       Hint = 'Enable/Disable Repeat Settings'
  197.       Caption = '&Repeat Settings'
  198.       TabOrder = 11
  199.       OnClick = chkRepeatClick
  200.     end
  201.   end
  202.   object btnSet: TButton
  203.     Left = 42
  204.     Top = 270
  205.     Width = 75
  206.     Height = 25
  207.     Hint = 'Set Alarm'
  208.     Caption = 'OK'
  209.     Default = True
  210.     TabOrder = 1
  211.     OnClick = btnSetClick
  212.   end
  213.   object btnCancel: TButton
  214.     Left = 123
  215.     Top = 270
  216.     Width = 75
  217.     Height = 25
  218.     Hint = 'Cancel Changes'
  219.     Cancel = True
  220.     Caption = 'Cancel'
  221.     TabOrder = 2
  222.     OnClick = btnCancelClick
  223.   end
  224.   object btnReset: TButton
  225.     Left = 203
  226.     Top = 270
  227.     Width = 75
  228.     Height = 25
  229.     Hint = 'Reset/Remove Alarm'
  230.     Caption = '&Reset'
  231.     TabOrder = 3
  232.     OnClick = btnResetClick
  233.   end
  234. end
  235.